home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / qlib205.zip / QLIB.ZIP / H / LZW.H < prev    next >
C/C++ Source or Header  |  1997-07-09  |  273b  |  15 lines

  1. #include <stddef.h>
  2.  
  3. #ifdef __cplusplus
  4.   extern "C" {
  5. #endif
  6.  
  7. extern dword lzw_compress(void *dest,void *src,dword siz)
  8.   //returns size of compress data
  9. extern dword lzw_decompress(void *dest,void *src)
  10.   //returns ERROR or 0
  11.  
  12. #ifdef __cplusplus
  13.   }
  14. #endif
  15.